home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / zendisk1.zip / LST4-10.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  267b  |  13 lines

  1. ;
  2. ; *** Listing 4-10 ***
  3. ;
  4. ; Measures the performance of repeated SHR instructions,
  5. ; which empty the prefetch queue, to demonstrate the
  6. ; worst-case impact of DRAM refresh on code performance.
  7. ;
  8.     call    ZTimerOn
  9.     rept    1000
  10.     shr    ax,1
  11.     endm
  12.     call    ZTimerOff
  13.